Pair Constructor (TFirst, TSecond)

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Creates a new pair with given first and second elements.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
public Pair(
	TFirst first,
	TSecond second
)
Visual Basic (Declaration)
Public Sub New ( _
	first As TFirst, _
	second As TSecond _
)
Visual C++
public:
Pair (
	TFirst first, 
	TSecond second
)

Parameters

first
TFirst
The first element of the pair.
second
TSecond
The second element of the pair.

See Also